home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 8
/
Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso
/
Aminet
/
mus
/
play
/
tracker_4_31.lzh
/
tracker
/
getoption.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-05-11
|
974b
|
44 lines
/* getopt.h
vi:ts=3 sw=3:
*/
/* $Id: getoption.h,v 4.12 1995/05/11 12:05:59 espie Exp espie $
* $Log: getoption.h,v $
* Revision 4.12 1995/05/11 12:05:59 espie
* *** empty log message ***
*
* Revision 1.1 1995/05/11 12:04:51 espie
* Initial revision
*
* Revision 4.11 1995/02/21 21:13:16 espie
* Cleaned up source. Moved minor pieces of code around.
*
* Revision 4.10 1995/02/21 17:54:32 espie
* Internal problem: buggy RCS. Fixed logs.
*
* Revision 4.5 1995/02/01 20:41:45 espie
* Added color.
*
* Revision 4.4 1995/02/01 16:39:04 espie
* Moved includes to defs.h
*
*/
struct long_option
{
char *fulltext;
int argn;
char abbrev;
int code;
};
/* n = getlongopt(argc, argv, options):
* try to parse options out of argv, using ways similar to standard getopt.
* Named getlongopt to avoid conflicts with getopt
*/
XT int getlongopt P((int argc, char *argv[], struct long_option *options));
XT int optind;
XT char *optarg;